2006-03-08 Michael Natterer <mitch@imendio.com>
* tests/prop-editor.c (unichar_changed): zero-initialize the
GValue before calling g_value_init().
+2006-03-08 Michael Natterer <mitch@imendio.com>
+
+ * tests/prop-editor.c (unichar_changed): zero-initialize the
+ GValue before calling g_value_init().
+
2006-03-08 Michael Natterer <mitch@imendio.com>
* gtk/gtkentry.c (gtk_entry_adjust_scroll): make sure that the
+2006-03-08 Michael Natterer <mitch@imendio.com>
+
+ * tests/prop-editor.c (unichar_changed): zero-initialize the
+ GValue before calling g_value_init().
+
2006-03-08 Michael Natterer <mitch@imendio.com>
* gtk/gtkentry.c (gtk_entry_adjust_scroll): make sure that the
GtkEntry *entry = GTK_ENTRY (data);
gunichar new_val;
gunichar old_val = unichar_get_value (entry);
- GValue val;
+ GValue val = { 0, };
gchar buf[7];
gint len;